From 8518aa2bf3f5462a0c6e84e059b3fc5198b487fa Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 24 Jun 2009 20:25:40 +0200 Subject: [PATCH] Rename accumulate_get_parent to accumulate_get_window This function is used in several places, not just get_parent --- gdk/gdkwindow.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gdk/gdkwindow.c b/gdk/gdkwindow.c index e61138ce0c..bd15498f89 100644 --- a/gdk/gdkwindow.c +++ b/gdk/gdkwindow.c @@ -393,10 +393,10 @@ gdk_window_init (GdkWindowObject *window) /* Stop and return on the first non-NULL parent */ static gboolean -accumulate_get_parent (GSignalInvocationHint *ihint, - GValue *return_accu, - const GValue *handler_return, - gpointer data) +accumulate_get_window (GSignalInvocationHint *ihint, + GValue *return_accu, + const GValue *handler_return, + gpointer data) { g_value_copy (handler_return, return_accu); /* Continue while returning NULL */ @@ -453,7 +453,7 @@ gdk_window_class_init (GdkWindowObjectClass *klass) G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_LAST, 0, - accumulate_get_parent, NULL, + accumulate_get_window, NULL, gdk_marshal_OBJECT__VOID, GDK_TYPE_WINDOW, 0); @@ -462,7 +462,7 @@ gdk_window_class_init (GdkWindowObjectClass *klass) G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_LAST, 0, - accumulate_get_parent, NULL, + accumulate_get_window, NULL, gdk_marshal_OBJECT__DOUBLE_DOUBLE, GDK_TYPE_WINDOW, 2, -- 2.30.2